jQuery(document).ready(function() {
	jQuery('#theme_switch_panel').animate({top: '+=350px'},{duration:900});
	jQuery('#theme_switch_panel').animate({top: "-=350px"}, {duration:700, easing: 'easeOutBounce'});
	var hint = '<p id="custom_hint">Check out different Styles!</p>';
	jQuery('#panel_theme_selector').append(hint);
	jQuery('#custom_hint').fadeIn().delay(1600).animate({left: '+=45%'},{duration:600}).delay(500).fadeOut(2000);

	/*
	jQuery('select#theme_selector').change(function(){
		document.forms["switchform_select"].submit();
	});	
*/
});

function setActiveStyleSheet(obj){
	var id = jQuery(obj).parent().attr('id');
	//alert(id);
	document.forms[id].submit();
}

function updateColorCSS(obj){
	jQuery('input#color_css').val(obj.value);
	var id = jQuery(obj).parent().attr('id');	
	document.forms[id].submit();
}