$(document).ready(function(){
	$('.clear').clearField();
});
$(document).ready(function(){
	if($("#gallery").exists()){
		$("#gallery").cycle({
			fx: "fade",
			timeout: 7000,
			delay: 1000,
	        speed: 700,
			pager:  "#gallery-controls",
			allowPagerClickBubble: true,
			pagerEvent: "click", //mouseover 
			pauseOnPagerHover: true, 
			pagerAnchorBuilder: function(idx, slide) { 
				return "#gallery-controls li:eq(" + idx + ") a"; 
			}
		});
	}
	if($("#box-msg").exists()){
		$("#box-msg").cycle({
			fx: "fade",
			timeout: 7000,
			delay: 1000,
	        speed: 700
		});
	}
});
jQuery.fn.exists = function () {
    return jQuery(this).length > 0 ? true : false;
};

