
$(document).ready(function(){
		var iLeft = $("#top1").offset().left + 700;
		var iTop = $("#top1").offset().top + 180;
	});	
	$(function() {
	    $('.buttons').hover(function() {
    	    var currentImg = $(this).attr('src');
	        $(this).attr('src', $(this).attr('hover'));
	        $(this).attr('hover', currentImg);
	    }, function() {
	        var currentImg = $(this).attr('src');
	        $(this).attr('src', $(this).attr('hover'));
	        $(this).attr('hover', currentImg);
	 });
});		
