
(function($) {

$.fn.flipvimage = function(options) {
	this.each(function(){ 	
		var textsav = $(this).html();
		$(this).empty().append("<img src='incs/framew/verticaltext.php?text="+textsav+"' />");
	});
	return $(this);
};
})(jQuery);

$(document).ready(function() {
	jQuery('ul.sf-menu').superfish();
	$(".side-menu>li:first-child>a").css('border-top', '0');
	$("table .vertical").flipvimage();
	$('#slideshowHolder').jqFancyTransitions({
		effect: 'curtain', // wave, zipper, curtain
		width: 350, // width of panel
		height: 290, // height of panel
		strips: 5, // number of strips
		delay: 3000, // delay between images in ms
		stripDelay: 50, // delay beetwen strips in ms
		position: 'alternate', // top, bottom, alternate, curtain
		direction: 'fountainAlternate', // left, right, alternate, random, fountain, fountainAlternate
		navigation: false, // prev and next navigation buttons
	});
});


