$(document).ready(function() {

	/*
	 * Show/hide panel dropdown
	 */
	$(".dropdown").hover(
		function() {
			if ( $(this).attr('view') == 'true' ) {
				return $(this);
			};
			$(this).children(".dropdown-conrext").show();
			$(this).children(".dropdown-title").addClass('selected');
		},
		function(event) {
			if ( $(this).attr('view') == 'true' ) {
				return $(this);
			};
			if( ! $(event.target).hasClass('tabInside')) {
				$(this).children(".dropdown-conrext").hide();
				$(this).children(".dropdown-title").removeClass('selected');
			}
		}
	);

	$(".dropdown input").focus(function() {
		$(this).parents(".dropdown").attr('view', 'true');
	});

	$(".dropdown input").blur(function() {
		$(this).parents(".dropdown").attr('view', 'false');
	});

	/*
	 * Slider panel
	 */
	$("#slider").easySlider({
		numeric: true,
		nextText: 	"",
		prevText: 	"",
		continuous: true
	});

});
