// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

// from existing grfxp
function popup(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href, windowname, 'width=500,height=380,scrollbars=no');
return false;
}

function openShip()
{
 popupWin = window.open('http://grafixpressions.com/shipping.shtml', 
   'server_window',
   'dependent,width=600,height=750,left=50,top=150,scrollbars')
}

$(document).ready( function () {
	$('div#pagewrapper').css('padding-top',($('div#store_header').height() + 20) + "px")
});
