//GALLERY MENU
jQuery(document).ready(function() {
	jQuery('#menu2009').click(function(e) {
		jQuery('#n2009').toggle();
		
		e.preventDefault();
	});
	
	jQuery('#menu2010').click(function(e) {
		jQuery('#n2010').toggle();
		
		e.preventDefault();
	});
	
	jQuery('#menu2011').click(function(e) {
		jQuery('#n2011').toggle();
		
		e.preventDefault();
	});
});

// AUTOMOTIVE PRODUCTS MENU
jQuery(document).ready(function() {
	
	jQuery('.dynamic').prev().hover(function() {
		var currentTitle = jQuery(this).text();
		var newTitle =  jQuery(this).next().text();
		
		jQuery(this).text(newTitle);
		jQuery(this).next().text(currentTitle);
		
	}, function() {
		var currentTitle = jQuery(this).text();
		var newTitle =  jQuery(this).next().text();
		
		jQuery(this).text(newTitle);
		jQuery(this).next().text(currentTitle);
		
	});
});

// AUTOMOTIVE PRODUCTS THUMBS
jQuery(document).ready(function() {
	jQuery('.m7autoproducts').hover(function() {
		jQuery('#alt-lang').slideDown();
	});
	
	jQuery('.m7autoproducts img').hover(function() {
		var title = jQuery(this).attr('title');
		
		jQuery('#alt-lang p').text(title);
		
	});
});

//TOOLTIP
//jQuery(document).ready(function() {
//	jQuery('.m7autoproducts img[title]').tooltip();
//});

