//------------------------------------------------------------------------------------------------
function init_slider(){
var el=$("a[href$=.jpg],a[href$=.JPG],a[href$=.jpeg],a[href$=.JPEG],a[href$=.bmp],a[href$=.BMP],a[href$=.gif],a[href$=.GIF],a[href$=.png],a[href$=.PNG]").addClass("gPic");
el.parent().addClass("daGallery");
$.each(el,function(){
	if( ! $(this).attr('rel')){
		$(this).attr('rel','in-text');
	}
});
DaGallery.init();
}
//------------------------------------------------------------------------------------------------
function init_carousel(){
$('#carouselv').jsCarousel({
	onthumbnailclick: function(src) { /*alert(src);*/ }, 
	autoscroll: true, 
	masked: false, 
	itemstodisplay: 5, 
	circular: true,
	orientation: 'v',
	delay:30000
});
$('#carouselh').jsCarousel({ 
	onthumbnailclick: function(src) { /*alert(src);*/ }, 
	autoscroll: true, 
	circular: true, 
	masked: false, 
	itemstodisplay: 5, 
	orientation: 'h', 
	delay:30000
});
}
//------------------------------------------------------------------------------------------------

