	jQuery(document).ready(function() {	
    jQuery('select.makeMeFancy').tzSelect({
      render : function(option){
        return jQuery('<li>',{
          html:	'<img src="'+option.data('icon')+'" /><span>'+
              option.data('html-text')+'</span>'
        });
      },
      className : 'hasDetails'
    });
    
    // Calling the default version of the dropdown
    jQuery('select.regularSelect').tzSelect();
				
		
	});//Close Function
