$(document).ready(function() {

	//nofesh bottom boxs
	$('div.Nhul div.nofeshText:first').show();
	$('div.Nhul ul li:first').css({'background-color' : '#DFDFDF' , 'font-weight' : 'bold'});
	
	$('div.Nhul ul li').click(function() {
		var thisClass = $(this).attr('class');
			$('div.Nhul ul li').css({'background-color' : 'Transparent' , 'font-weight' : 'normal'});
			$('div.Nhul div.nofeshText').hide();
			$('div.Nhul div#' + thisClass).show();
			$(this).css({'background-color' : '#DFDFDF' , 'font-weight' : 'bold'});
	});
	
	$('div.Ndomestic div.nofeshText:first').show();
	$('div.Ndomestic ul li:first').css({'background-color' : '#DFDFDF' , 'font-weight' : 'bold'});
	
	$('div.Ndomestic ul li').click(function() {
		var thisClass = $(this).attr('class');
			$('div.Ndomestic ul li').css({'background-color' : 'Transparent' , 'font-weight' : 'normal'});
			$('div.Ndomestic div.nofeshText').hide();
			$('div.Ndomestic div#' + thisClass).show();
			$(this).css({'background-color' : '#DFDFDF' , 'font-weight' : 'bold'});
	});
	
	//nofesh clickable Divs
	$('div.nofeshText').each(function() {
		
		var thisLink = $(this).children('div.nofeshDealImg').children('a').attr('href');
		$(this).click(function() {
			window.location = thisLink;
		})
	});
	
	//Ticker
	$("#ticker marquee").hover(
		function() {
			$(this).attr('scrollAmount', 0)
		},
		function() {
			$(this).attr('scrollAmount', 3)
		}
	);	

});
