// JavaScript Document

$(document).ready(function(){

// input file
 $("input[type=file]").filestyle({ 
     image: "images/btn-prochazet.gif",
     imageheight : 23,
     imagewidth : 73,
     width : 213
 });
 


// select
	$('select').sSelect();		
  //set max height
  //$('#my-dropdown').sSelect({ddMaxHeight: '300px'});

$('input[type=file]').hover(function() {
$(this).css('cursor','hand');
}, function() {
$(this).css('cursor','auto');
});

 }
);	

