﻿// Input Focus //////////////////////////////////////////////////////////////////////////////////////////
$(document).ready(function(){
    //if ($.browser.msie){
        $("input[@type='text'], input[@type='password'], textarea, select").focus(function(){
        $(this).parent("div").addClass("allfocus")}).blur(function(){
           $(this).parent("div").removeClass("allfocus");
           });
		//}
    })

// Table Hover for pruducts list  ///////////////////////////////////////////////////////////////////////
$(document).ready(function(){
						   
	$("table.products_list_box").mouseover(function(){
		$(this).addClass("products_list_box_hover");}).mouseout(function(){
		$(this).removeClass("products_list_box_hover");
	})

});

function AutoScroll(obj){
	jQuery(obj).find("ul:first").animate({
		marginTop:"-30px"
	},500,function(){
		jQuery(this).css({marginTop:"0px"}).find("li:first").appendTo(this);
	});
}
$(document).ready(function(){
	setInterval('AutoScroll("#srollfeedback")',5000)
});
