$(document).ready(function() {
						   
	Cufon.replace('h1, h2, h3, h4, h5', {
		fontFamily: 'PT Sans'
	});
	
	Cufon.replace('footer h4', {
		fontFamily: 'PT Sans',
		textShadow: '#000 0px 1px 0px;'
	});
							
	Cufon.replace('#sidebar .widget span h3', {
		fontFamily: 'PT Sans',
		textShadow: '#fff 0px 1px 0px;'
	});
	
    $('#slider-text').cycle({
		fx: 'scrollVert', // http://jquery.malsup.com/cycle/browser.html
		prev:   '#prev', 
    	next:   '#next',
		pager:  '.slider_dots'
	});
	
	$('.testimonials').cycle({
		fx: 'scrollHorz', // http://jquery.malsup.com/cycle/browser.html
		prev:   '.testimonials_nav .prev', 
    	next:   '.testimonials_nav .next',
		timeout: 6000,
		speed: 500
	});
	
	//Quick Contact Form styling
	$(".quick_contact input").click(function(){
			$(this).next().fadeOut(100);
	});
	
	
	
	
	//Sidebar Menu Function
	$('#sidebar .widget ul li ul').parent().addClass('hasChildren').children('a').append("<span />");
	var children;
	$("#sidebar .widget ul li").hoverIntent(
								  function () {
									children = $(this).children("ul");
									if($(children).length > 0){
											$(children).stop(true, true).slideDown();	   
									}
								  }, 
								  function () {
									  $(this).children('ul').stop(true, true).slideUp();
								  }
	);
	
	
	//Lightbox
	$("a[rel^='prettyPhoto']").prettyPhoto({show_title: false});
	

	
});
