$(document).ready(function(){
	

$('.top').hover(function() {
   	var myDrop = $(this).children('.drop');
	$(myDrop).show(100);
}, function() {
	var myDrop = $(this).children('.drop');
	$(myDrop).stop(true, true).hide(0);
	$('.two').css({'display' : 'none'}); /*fixes safari bug with flyout artifacts*/
});

$('.one').hover(function() {
	var myFly = $(this).children('.two');
	$(myFly).show(100);
}, function() {
	var myFly = $(this).children('.two');
	$(myFly).stop(true, true).hide(0);
});


/*newsslide*/
/*initial*/

$('.newsitem').eq(0).animate({'top' : '0px'},800);
$('.newsitem').eq(1).animate({'top' : '70px'},1000);
$('.newsitem').eq(2).animate({'top' : '140px'},1000);
$('.morenews').fadeIn(300);

/*looping controls*/
$('.morenews').click(function() {
$('.newsitem').animate({'top' : '205px'},0);
$('.morenews').fadeOut(0);
$('.morenews1').fadeIn(0);
$('.newsitem').eq(3).animate({'top' : '0px'},800);
$('.newsitem').eq(4).animate({'top' : '70px'},1100);
$('.newsitem').eq(5).animate({'top' : '140px'},1100);
});

$('.morenews1').click(function() {
$('.newsitem').animate({'top' : '205px'},0);
$('.morenews1').fadeOut(0);
$('.morenews').fadeIn(0);
$('.newsitem').eq(0).animate({'top' : '0px'},800);
$('.newsitem').eq(1).animate({'top' : '70px'},1100);
$('.newsitem').eq(2).animate({'top' : '140px'},1100);
});


$('#close').click(function(){
	$('#gc-wrapper').hide();
});


/*$('#header').css({'background-image' : 'url(/images/toprpt.jpg)' , 'background-repeat' : 'repeat-x'});*/

/*preload images*/
  var newPhoto1 = new Image();
  newPhoto1.src = 'http://www.francksfood.com/images/btn-2fr.jpg';
  
  var newPhoto2 = new Image();
  newPhoto2.src = 'http://www.francksfood.com/images/btn-1fr.jpg';
  
  var newPhoto3 = new Image();
  newPhoto3.src = 'http://www.francksfood.com/images/btn-dropdownfr.gif';

});





