$(document).ready(function(){   
	
	$(document).pngFix();
	
	$('#quotechanger').innerfade({
		speed: 2600,
		timeout: 5000,
		type: 'sequence',
		containerheight: '212px'
	});
	
	$('#imagechanger').innerfade({
		speed: 2600,
		timeout: 5000,
		type: 'sequence',
		containerheight: '366px'
	});
	
	$(".fancybox").fancybox();
		$(".fancyframe").fancybox({
		'zoomSpeedIn': 0, 
		'zoomSpeedOut': 0, 
		'overlayShow': true ,
		'frameWidth': 480,
		'frameHeight': 380
	});	
 
	$('input[type="text"], textarea').focus(function() {
		$(this).addClass("focus");
	});
	$('input[type="text"], textarea').blur(function() {
		$(this).removeClass("focus");
	});
	
	$('#evgal').cycle({ 
		fx:     'fade', 
		speed:  'fast', 
		timeout: 0, 
		next:   '#next2', 
		prev:   '#prev2' 
	});
	
	// this initialises the demo scollpanes on the page.
	$('.copy').jScrollPane({showArrows:true});

	
});

