// JavaScript Document
$(document).ready(function () {
    $("#ctl00_dshape").selectbox();
    $("#ctl00_dsize").selectbox();
    $("#ctl00_dlow").selectbox();
    $("#ctl00_dhigh").selectbox();
    $("#ctl00_dtopic").selectbox();

    $('.d-trigger').click(function () {
        $(this).toggleClass('d-trigger-active');
        $('.container').slideToggle();
        return false;
    });

    $('.box').mouseenter(function () {
        $(this).find('.info').fadeIn();
    });

    $('.box').mouseleave(function () {
        $(this).find('.info').fadeOut();
    });

    $('.close').click(function () {
        $(this).parent().fadeOut();
    });

});  // Document Ready Ends

//$(document).ready(function () {
//		$( "#price-range" ).slider({
//			range: true,
//			min: 0,
//			max: 100000,
//			values: [ 3000, 54514 ],
//			slide: function( event, ui ) {
//				$( "#pricelow" ).val( "$" + ui.values[ 0 ] );
//				$( "#pricehigh" ).val( "$" + ui.values[ 1 ] );
//			}
//			
//		});
//		$("#pricelow").val( "$" + $( "#price-range" ).slider( "values", 0 ));
//		$("#pricehigh").val( "$" + $( "#price-range" ).slider( "values", 1 ));
//	});
//$(document).ready(function () {
//		$( "#carat-range" ).slider({
//			range: true,
//			min: 1,
//			max: 10,
//			values: [ 2, 6 ],
//			slide: function( event, ui ) {
//				$( "#caratlow" ).val(ui.values[ 0 ] );
//				$( "#carathigh" ).val(ui.values[ 1 ] );
//			}
//			
//		});
//		$("#caratlow").val( $( "#carat-range" ).slider( "values", 0 ));
//		$("#carathigh").val($( "#carat-range" ).slider( "values", 1 ));
//	});

//$(document).ready(function () {
//		$( "#color-range" ).slider({
//			value:5,
//			min: 1,
//			max: 7,
//			step: 1
//		});
//	});
//$(document).ready(function () {
//		$( "#clarity-range" ).slider({
//			value:5,
//			min: 1,
//			max: 8,
//			step: 1
//		});
//	
//	
//   $("#myTable").tablesorter({ 
//        // pass the headers argument and assing a object 
//        headers: { 
//            // assign the secound column (we start counting zero) 
//            0: { 
//                // disable it by setting the property sorter to false 
//                sorter: false 
//            }, 
//            // assign the third column (we start counting zero) 
//            6: { 
//                // disable it by setting the property sorter to false 
//                sorter: false 
//            } 
//        } 
//    });  

//});

