$(document).ready(function(){

	$('#top_menu').pngFix();
	$('#top_bg').pngFix();
	$('#logo').pngFix();
	$('#header_right').pngFix();
	$('#slide').pngFix();
	$('.bottom').pngFix();


	$("#brend_select").change( function () {
		var selected = $("#brend_select option:selected");
		window.location = selected.val();
	});
	
	
	$("inp_label input").focus(function(){
		$(this).find('label').css("top","-99999px");
		$(this).find('input').focus();
	});
	
	
	$(".inp_label input").blur(function(){

		if ($(this).val() == '') {
			$(this).next().css("top","0px");
		}
	});
	$(".inp_label input").keydown(function(event){
		if (event.keyCode == '0xD') {
			$(".inp_label.pass label").css("top","-99999px");
		}
	});
	$(".inp_label input").dblclick(function(){
		$(".inp_label.pass label").css("top","-99999px");

	});
	
});

function hideLabel(wrap) {
	$(wrap).find('label').css("top","-99999px");
	$(wrap).find('input').focus();
}
