// JavaScript Document

$(document).ready(function(){
						   
						   
	//bind link	
	$('.download').click(function( event ) {
		  var id="#"+$(event.currentTarget).attr('name');
		  var where=$(id).attr('href');
		  window.open(where).opener=null;
	});
	
	$('.download_buy').click(function( event ) {
		  var id="#"+$(event.currentTarget).attr('name');
		  var where=$(id).attr('href');
		  window.open(where).opener=null;
	});
	
	//img hover
	$(".download").hover(function() {
 		  this.src = this.src.replace("_on","_over");
 		  },
 		  function() {
  		  this.src = this.src.replace("_over","_on");
 	});
	
	$(".download_buy").hover(function() {
 		  this.src = this.src.replace("_on","_over");
 		  },
 		  function() {
  		  this.src = this.src.replace("_over","_on");
 	});



});
