// Cufon Related Script below
Cufon.replace('.logo h1', { fontFamily: 'Steelfish' });
Cufon.replace('header aside p', { fontFamily: 'Aller' });
Cufon.replace('.bodyCont h2, .bodyCont h3', { fontFamily: 'Franklin Gothic Medium'});


// ----------------------- Cufon script ends --------------------------

// Jquery Related Script below

$(document).ready(function() {
	$('.featuredCont aside:last-child').css({
		'padding-right': '0',
		'background': 'none',
		'margin-right': '0'
	});
	$('.bodyCont footer ul li:first-child').css({
		'padding-left': '0',
		'background': 'none'
	});
	
	// Left Panel Drop menu
	$('.leftPan ul div.drop').parent().hover(function() {
		$(this).children('div.drop').fadeIn('fast');
		$(this).addClass('dropActive');
	},
	function() {
		$(this).children('div.drop').fadeOut('fast');
		$(this).removeClass('dropActive');
	});
	
	// Inner Page Content
	$('.galWithContent:last-child').css('background', 'none');
	
	// Left Panel Bottom BG
	var rightPanHeight = parseInt($('.rightPan').height());
	var rightPanHeight1 = parseInt(rightPanHeight-120);
	var leftPanHeight = parseInt($('.leftPan').height());
	if( rightPanHeight1 > leftPanHeight) {
		$('.leftOuterPan .bottomCurve').css('background-image', 'url(images/left-panel-bottombg-small.jpg)');
	}	
});


