jQuery(document).ready(function($){
	
	//Enable external links
	$('a[rel~=external]').attr('target','_blank');
	
	//Enable page printing
	$('.print').click(function(){ window.print(); });
	
	//Enable prettyPhoto
	$('a[rel^=prettyPhoto]').prettyPhoto();
	
	//Setup form field with default value
	function setFieldValue(id,value){
		$('#'+id).val(value).focus(function(){
			if( $(this).val() == value)
				$(this).val('');
		}).blur(function(){
			if( $(this).val() == '')
				$(this).val(value);
		});
	}
	
	//Setup drop-downs in IE
	if( $.browser.msie && parseFloat($.browser.version) < 7.0 ){
		$('#menu li').hover(
			function(){
				$('ul:first',this).show();
			},
			function(){
				$('ul:first',this).hide();
			}
		);
	}
	
	//Setup homepage cycle
	if( app == 'home' ){
		
		$('#feature').append('<ul id="feature-pagination"></ul>');
		$('#feature-slides').cycle({
			timeout:8000,
			pager:'#feature-pagination',
			pagerAnchorBuilder:function(i,item){
				return "<li><a id='feature-pagination-" + (i+1) + "' href='#' title='" + (i+1) + "'>" + (i+1) + "</a></li>";
			}
		});
		
	}
	
	//Setup subpages
	if( app != 'home' ){
		
		//Re-order sidebar solutions
		if( $('#menu-item-brand-marketing1').size() > 0 ){
			var brandMarketing = $('#menu-item-brand-marketing1').remove();
			$('#content-left-sidebar-body ul:first').prepend(brandMarketing);
		}
		
	}
	
});