// JavaScript Document

$(document).ready(function(){
	//jFlow
	$("#myController").jFlow({
		slides: "#mySlides",
		width: "100%",
		height: "670px",
		duration: 400
	});
	//top tabs fade in / out
	$("a[href=#tabs-1]").click(function() {
     			$('#myController').fadeIn('slow');
   				});
	$("a[href=#tabs-2]").click(function() {
     			$('#myController').fadeOut('slow');
   				});
	$("a[href=#tabs-3]").click(function() {
     			$('#myController').fadeOut('slow');
   				});
});
	// Tabs		
	$(function(){			
		$('#tabs').tabs({ fx: { opacity: 'toggle' } }).tabs();
		$('#myController').show();
	});
	
	$('.store-right-panel').corner("right");
			
