$(window).load(function(){
	$('.skinned-select').each(function(i) {
		selectContainer = $(this);
		var size_sel = selectContainer.width()-10;

		selectContainer.children().before('<div class="select-text" style="width:'+size_sel+'px">a</div>').each(function(){
			var contsel = ($("option:selected", this).text() + " ");
			if (contsel ==""){
				contsel =  ($(this).options[0].text() + " ");
			}
			$(this).prev().text(contsel)
		});
		var parentTextObj = selectContainer.children().prev();
		selectContainer.children().click(function() {
			parentTextObj.text(this.options[this.selectedIndex].innerHTML);
		})
		
		$(this).parent().append('<hr class="clear" />');

	});

	//HOVER ADDDED BY IKALY
	$(".skinned-select").hover(function() {
		var obj = $('.select-text',this);
		$(obj).css({ 'background-position':'right -33px','background-color':'#ececec','border-color':'#dfdfdf' });
	},
	function () {
		var obj = $('.select-text',this);
		$(obj).css({ 'background-position' : 'right 1px','background-color':'#f5f5f5','border-color':'#ebebeb' });
	});
});

