// JavaScript Document

$(document).ready(function(){
			
			$('.dropship').find('img').css('display', 'inline');
			$('.dropship').find('img').bind('click', reveal);
			
			$('.willcall').find('img').css('display', 'inline');
			$('.willcall').find('img').bind('click', reveal2);
		   
						   
			function reveal(){		   
		
				$('.blind').find('p').eq(1).css('position', 'static');

			}
			
			function reveal2(){
				
				$('.dropshipEx').css('width', '70%').css('margin', '1em auto').css('position', 'static');
			
			}
						   
						   
						   
						   
});