/**
 * @author emotech
 */

$(document).ready(function() {
	// clear the default text
	$('input:text, textarea').focus(function(){
		this.value = "";
	})
	
	// cycle posts in the bar
	$('#cycleBar').cycle({ 
	    fx: 'blindX' 
	});
	
	// fancybox init
	initFancyBox();
	
});


function initFancyBox() {

	$("a.fancy").fancybox({
		zoomSpeedIn : 800,
		zoomSpeedOut : 600,
		overlayShow : true,
		overlayOpacity : 0.7
	});
}
