$(document).ready(function(){
						    if ($.browser.msie && $.browser.version.substr(0,1)<7) {
							   
						   }else{
						  
						  $(".myreel").each(function(){
															  
								var has=$(this).find(".bgimage > .inner > a").each(function(){
																							
																							
																						$(this).parent().parent().css('opacity',0.5)
																							$(this).hover(function(){
																	   
																	   			
																	 	$(this).parent().parent().fadeTo('slow', 1);
																		
																	   },function(){
																	   
																	   		
																	 	$(this).parent().parent().fadeTo('slow', .5);
																		
																	   }
																	   
																	   
																	   );
							
																							});
							
									});/**/
						   }
						   });
