/* SLide show */
jQuery(document).ready(function(){
	
	jQuery('.post_info').hide();

	jQuery(".jobs h2").click(function(){
		$(this).next(".post_info").slideToggle("slow")
		.siblings(".post_info").slideUp("slow");
		jQuery(this).toggleClass("active");
		jQuery(this).siblings(".jobs h2").removeClass("active");
	});
	
	
	jQuery('.slider').mobilyslider({
		content: '.sliderContent',
		children: 'div',
		transition: 'vertical',
		animationSpeed: 2000,
		autoplay: true,
		autoplaySpeed: 10000,
		pauseOnHover: false,
		bullets: false,
		arrows: false,
		arrowsHide: true,
		prev: 'prev',
		next: 'next',
		animationStart: function(){},
		animationComplete: function(){}
	});
	
});



