var $j = jQuery.noConflict();

$j(document).ready(function(){
	
	$j("a[rel^='prettyPhoto']").prettyPhoto({
		default_width: 315,
		social_tools: ''
	});
	
	// =MIAN MENU DROPDOWN
		$j('#main-menu > li').mouseenter(function(){
			$j(this).children('a').css('color', '#fff');
			$j(this).children('.sub-menu').slideDown();
		}).mouseleave(function(){
			$j(this).children('a').css('color', '#ccc');
			$j(this).children('.sub-menu').fadeOut();
		});
	
	// =HEADLINE CYCLE ON FRONT PAGE
		$j('#headline-cycle-content').cycle({
			timeout: 12000,
			allowPagerClickBubble: true,
			pager: '#headline-cycle-pager',
			pagerAnchorBuilder: function(idx, slide) { return '#headline-cycle-pager a:eq('+idx+')'; },
			pagerEvent: 'mouseover',
			pauseOnPagerHover: true
		});
	
});
