﻿jQuery(document).ready(function () {
	jQuery('#socialLinks img').hover(function() {
		jQuery(this).animate({marginTop: "3px"}, {queue:false, duration: 100});
	},
	function(){
		jQuery(this).animate({marginTop: '0'}, {queue:false, duration: 100});
	});
	
	jQuery('.productImgSm').click(function() {
	jQuery('#productImgBigID').attr('src',jQuery(this).attr('alt'));
	jQuery('#productImgBigTargetID').attr('href',jQuery(this).attr('alt'));
	});
	
	/*jQuery( "#sideMenu ul" ).accordion({
			header: 'h4',            
			height: 10});*/
});
