$(document).ready(function () {
	
	//Form Clearing
	$('#form input').focus(function() {
  		if($(this).val() == $(this).attr("rel")) $(this).val("");
	});
	
	$('#form input').blur(function() {
       	if(!$(this).val()) $(this).val($(this).attr("rel"));
    });
    
    //alert($('.content-container').css('height'));
	  
	var divHeight = $('#sub-content').height();
	var divHeightVal = parseInt(divHeight);
	var divHeightWhole = Math.floor(divHeightVal/190);
	var remainder = 190 - (divHeightVal - (divHeightWhole*190));
	var totalHeight = divHeightVal + remainder;
	$('#sub-content').css('height',totalHeight + "px");

	
	$('#sidebar-music a').click(function(){
	
		window.open(this.href,null,"height=460,width=500,status=no,toolbar=no,menubar=no,location=no");
		return false;
	
	});
	
});

