/*------------------------------------------------------------------------
 * jQuery
 *------------------------------------------------------------------------*/

 
/*------------------------------------------------------------------------
 * applies to img elements with class "swap_img" 
 *------------------------------------------------------------------------*/
 
 $(document).ready(function() {
 	$(function() {
    	$("img.swap_img")
        	.mouseover(function() {
				var suffix = $(this).attr("src").match(/gif|jpg|png/);
            	var src = $(this).attr("src").match(/.*[^\.(gif|jpg|png)]+/) + "_swap." + suffix;
            	$(this).attr("src", src);
        	})
        	.mouseout(function() {
            	var src = $(this).attr("src").replace("_swap", "");
            	$(this).attr("src", src);
        	});
			
		$("#accordion").accordion({ header: "h3" });
		$('#tabs').tabs();
	});
});


