/*=============================================================
Type:				Langmead Farms Website
Build by:			VGroup
Document Author:	Mark Perkins
Author Email:		mark.perkins@vgroup.com
Copyright: 			(c) Vgroup 2008 	
---------------------------------------------------------------
Creation Date:		07-08-2008
============================================================ */

var lf = function(){
	
	var initImageSwapper = function()
	{
		if ( $.browser.msie )
		{
			$("#image_swapper").mouseover(function(){
				$(this).css("width","56px");
				$(this).find("a").css({"display":"block"});
			}).mouseout(function(){
				$(this).find("a").hide();
				$(this).css("width","22px");
			})
		}

		// if ( ! $.browser.msie )
		// 	{
			$("#image_swapper a").click(function(e){

				$("#image_swapper a").removeClass("selected");
				$(this).addClass("selected");
		
				$("body").css("backgroundImage","url("+$.uri.key("base")+"cssimages/bg"+$(this).attr("rel")+".jpg)" );
			
				$.cookie( 'lang_bg', '', { expires: -1 }); // delete cookie first, just to be sure
				$.cookie( 'lang_bg', "bg"+$(this).attr("rel")+".jpg", { path : "/" } ); // set cookie
				return false;
			});
		// }
		// else
		// {
		// 	
		// }
	}
	
	return {
		
		init : function(){
			initImageSwapper();
			if ( editmode == "view_site" ) $(".subpage #promo_section").css("position","static"); // remove relative positioning on the promo banner for flash
		}
	}
	
}();


$(function(){ lf.init() });