// JavaScript Document
$(document).ready(function(){

	/*$(window).load(function () {
		$(".fadeContainer").fadeIn(1200);
    });*/

	$(".multinav").hover(
		function () {
      	$("#subnav").fadeIn(500);
      	},
      	function () {
    	$("#subnav").fadeOut(250);
	});

	$(".growername").prepend("- ");
    
	$("a:contains('more')").addClass("more");

	$("a:contains('list')").addClass("back");
	
	$("a:contains('top')").addClass("top");
	
	//hide the all of the element with class msg_body
	$(".hider").hide();
	//toggle the componenet with class msg_body
	$(".hideLink").click(function(){
		$(this).next(".hider").toggle();
	});
	
	
	// fancy lightbox
			$("a.zoom").fancybox();

			$("a.zoom1").fancybox({
				'frameWidth':520,
				'frameHeight':292,
				'hideOnContentClick':false,
				'zoomSpeedIn':200,
				'zoomSpeedOut':200,
				'overlayShow':true,
				'overlayOpacity':0.8
			});

			$("a.zoom3").fancybox({
				'frameWidth':420,
				'frameHeight':308,
				'hideOnContentClick':false,
				'zoomSpeedIn':200,
				'zoomSpeedOut':200,
				'overlayShow':true,
				'overlayOpacity':0.8
			});
    
});

