/*
In WordPress, the$() syntax is always used by other scripting library, 
and causing the conflict issue and fail to call the jQuery function. 
You should use jQuery() instead…
*/
$j=jQuery.noConflict();

$j(function(){
	$j('.slider1').mobilyslider({
		content: '.sliderContent',
		children: 'div',
		transition: 'horizontal',
		animationSpeed: 500,
		autoplay: true,
		autoplaySpeed: 6000,
		pauseOnHover: true,
		bullets: true,
		arrows: false,
		arrowsHide: false,
		prev: 'prev',
		next: 'next',
		animationStart: function(){},
		animationComplete: function(){}
	});
});

