$(function() {
	
	$("div.tabs").tabs(".slideContainer > div", {

		// enable "cross-fading" effect
		effect: 'fade',
		fadeOutSpeed: "slow",

		// start from the beginning after the last tab
		rotate: true

	// use the slideshow plugin. It accepts its own configuration
	}).slideshow();
});

//Opacity change for images
$(document).ready(function(){
	$(".opacityChange").hover(function(){
		$(this).stop(false,true).animate({"opacity": 1}, 200)},
		function(){
		$(this).stop(false,true).animate({"opacity": 0.7}, 200);
	})
})
