
//adding local js from files
jQuery(document).ready(function($) {
	
	$(".logo_button_img").hover(
		function () {
			$(this).attr("src", $(this).attr("src").replace(/_normal.jpg/, "_over.jpg"));
		},
		function () {
			$(this).attr("src", $(this).attr("src").replace(/_over.jpg/, "_normal.jpg"));
		}
	);


});


