/* JQUERY CUSTOM COMMANDS */
$(document).ready(function() { /* start javascript when document is loaded */
	
	/* DROPDOWN main right */
	$('#searchBox .selectInput').hover(function() {
        $(this).find("ul").show();
    }, function() {
        $(this).find("ul").hide();
    });
	
	/* DROPDOWN top */
	$('#topSearchBox .selectInput').hover(function() {
        $(this).find("ul").show();
    }, function() {
        $(this).find("ul").hide();
    });
	
	
	/* PRODUCT THUMBS  */
	$('.minipictures a').hover(function() {
		$(this).parents('.minipictures').find('a.active').removeClass('active');
		$(this).addClass('active');
	}, function() {
	});

});
