jQuery(document).ready(function($) {

///////////////Ribbons hover in  header
$(function(){
$('#about').hover(
			function() { $('#hover').stop().animate({left: '436'}, 'slow');}    
		);

$('#contact').hover(
			function() { $('#hover').stop().animate({left: '607'}, 'slow');}    
		);

$('#book').hover(
			function() { $('#hover').stop().animate({left: '776'}, 'slow');}    
		);

	 });


});//Close Function
