(function($){
	
	$(document).ready(function() {
		if ($.browser.msie && $.browser.version.substr(0,1)<7) {
			DD_belatedPNG.fix('h1#logo a, .featured-img span, .logo-small a, #footer .follow-box, .pagination img');
		};
		
		$('#topbar a.btn-login').click(function() {
			$(this).toggleClass('hover').next('.dd').slideToggle();
			return false;
		});
		
		$('.blink').focus(function () {
			if ($(this).val() == $(this).attr('title')) {
				$(this).val('');
			}
		}).blur(function () {
			if ($(this).val() == '') {
				$(this).val($(this).attr('title'));
			}
		});
		
		$('.not-available').css({'position': 'relative', 'opacity': '0.7'}).append('<div style="position: absolute; top:0; left: 0; width: 100%; height: 100%; z-index: 999;"/>');

		$('#thingiverse-box .content h5').autoEllipsis();
		$('#thingiverse-box .content p').autoEllipsis();
		$('#blog-box .content li a').autoEllipsis();
	});
	
})(jQuery)

