$(document).ready(function(){
	$('#text_size li').click(resizeText);
	$('.sub-nav-launch').hover(function() {
		openNav = true;
		if (obj) {
			$('#'+obj.id+'-nav').fadeOut('fast');
			obj = null;
		}
		$('#'+this.id+'-nav').fadeIn('fast');
	}, function() {
		openNav = false;
		obj = this;
		setTimeout(
			"checkHover()",
			400);
	});
	$('.sub-nav > li').hover(
	function(){
		openNav = true;
	},
	function(){
		openNav = false;
	});
	$('.sub-nav li').hover(
	function(){
		$(this).addClass('hover');
	},
	function(){
		$(this).removeClass('hover');
	});
});
var obj = null;
var openNav = false;
var page = window.location.toString();
var side;
var	flash;
var	file;
var	w;
var	h;
var	id;
if (page.match('index') || page.match('/$')) {
	side = 0;
	flash = 1;
	file = "home";
	w = 982;
	h = 350;
	id = "flash_home";
} else if (page.match('inner')) {
	side = 1;
	flash = 1;
	file = "inner";
	w = 982;
	h = 220;
	id = "flash";
} else if (page.match('walmart_us')) {
	side = 1;
	flash = 1;
	file = "walmart_us";
	w = 982;
	h = 220;
	id = "flash";
} else if (page.match('walmart_international')) {
	side = 1;
	flash = 1;
	file = "walmart_international";
	w = 982;
	h = 220;
	id = "flash";
} else if (page.match('sams_club')) {
	side = 1;
	flash = 1;
	file = "sams_club";
	w = 982;
	h = 220;
	id = "flash";
} else if (page.match('scott')) {
	side = 0;
	flash = 0;
} else {
	side = 0;
	flash = 0;		
}
if(flash===1){
	$('#nav').after('<div id="'+id+'"></div>');
	$('#'+id).flash({
        src: '_flash/'+file+'.swf',
        width: w,
        height: h,	
        wmode: 'transparent'
    });
}
var text_size = '<div id="text_size"><ul><li style="font-size:12px;">Text Size:</li><li style="font-size:12px;" class="a1">A</li><li class="a2">A</li><li class="a3">A</li></ul></div><br clear="all" />';
if($('#'+id).length===0){
	$('#nav').after(text_size);
}else{
	$('#'+id).after(text_size);
}
if(side===1){
	$('#text_size').next('br').after('<div id="side"></div>');
	var url = '_includes/side_';
	if(page.match('walmart_us')){
		url += 'walmart_us.html';
	}else if(page.match('walmart_international')){
		url += 'walmart_international.html';
	}else if(page.match('sams_club')){
		url += 'sams_club.html';
	}
	$('#side').load(url,function(){});
	var pad_div_id = 'pad';
}else{
	var pad_div_id = 'pad_no_side';
}
function resizeText(){
	var selector = '#content p, #content ul, #content ol, #content td, #content .caption_content, #side_content ul';
	switch($(this).attr('class')){
		case 'a1':
			$(selector).css('font-size','12px');
			$(selector).css('line-height','18px');
		break;
		case 'a2':
			$(selector).css('font-size','14px');
			$(selector).css('line-height','20px');
		break;
		case 'a3':
			$(selector).css('font-size','16px');
			$(selector).css('line-height','22px');
		break;
	}
}
function checkHover() {
	if (obj && !openNav) {
		$('#'+obj.id+'-nav').fadeOut('fast');
	}else{
		setTimeout(
			"checkHover()",
			400);
	}
}