var imgpath = '/sites/all/themes/rexona/images/';

$(document).ready(function(){
	
	// langs
	//$('div.divLanguages').find('li.da').hide(); // hide danish while translating
	
	
	// main menu
	$('div.divNavCent').find('div').each(function(){
		if ($(this).find('a').attr('class') == 'active') {
		//alert($(this).find('a').attr('class'));
			$(this).addClass($(this).attr('class') + 'Sel');
		}
	});
	$('div.menu-level-1').find('li').css({
		'z-index': 100
	});
	$('div.menu-level-1').find('li.active-trail').css({
		'z-index': 90
	});	

	//$('body').hide();
	
	//$('div.divCntntContainer').hide();
	$('div.divCntntContainer').fadeIn(1000);
	
	/* FAQ */
	$('div#faqview_q').find('div.views-row').click(function(){
		$('div#faqview_q').find('div.views-row').find('div.views-field-title').removeClass('views-field-title_sel');
		$(this).find('div.views-field-title').addClass('views-field-title_sel');
		var insertcontent = new String();
		insertcontent += '<h2>' + $(this).find('div.views-field-title').html() + '</h2>';
		insertcontent += $(this).find('div.views-field-body').html();
		//alert(insertcontent);
		$('div#faqview_a').hide();
		$('div#faqview_a').html(insertcontent);
		$('div#faqview_a').fadeIn('normal');
	});
	$('div#faqview_q').find('div.views-row').find('div.views-field-title').mouseover(function(){
		$(this).addClass('views-field-title_hover');
	});
	$('div#faqview_q').find('div.views-row').find('div.views-field-title').mouseout(function(){
		$(this).removeClass('views-field-title_hover');
	});
		
	//FILMS

	//ADS
	
});



