$(document).ready(function()
{

    $('#frame').cycle({fx:'fade',speed:1000,timeout:7000,pause:1,random:1});
	$('#frame2').cycle({fx:'fade',speed:1500,timeout:4000,pause:1,random:1});

	$("ul.sf-menu").superfish({
	animation : { opacity:"show", height:"show" }, delay : 300, autoArrows:    false
});
	
	$("ul.v-menu").superfish({
	animation : { opacity:"show"}, delay : 300
});

$("a.[rel^='lightbox']").prettyPhoto({counter_separator_label: '/', theme:'dark_square', showTitle:false})

if ( $('#cal-link').length ) {

var offset = $('#cal-link').offset();
offset.top = offset.top + $('#cal-link').height() + 3;

$("#calendar-layer").css({ top:offset.top, left: offset.left});
$('#cal-link').click(
					  function(){
//						  $(this).toggleClass('accent','slow');
						  $('#calendar-layer').animate({height: 'toggle', opacity: 'toggle'}, "slow")
					  });
}
$('div.item img').each(function() {
var float = $(this).css('float');
if (float) {$(this).css('clear',float);}
});


});