$(document).ready(function(){

	
	//custom select
	$(".customComboHolder select").hover(
		function () {$(this).parent().addClass("dropdown_over");},
		function () {$(this).parent().removeClass("dropdown_over");}
	);	
	
	$(".customComboHolder select").change(function () {
          var str = "";
          $(this).find("option:selected").each(function () {
                str += $(this).text();
              });
          $(this).parent().find("div").text(str);
        })
        .change();
		
		
		$("ul.filmsMeny li:last-child").addClass('lastChild');
		$("ul.movieDetails li:last-child").addClass('noBorder');

        $("#sortFrm").change(function (){
            $("#sortFrm").submit();
        }) ;
                
	
});


