$(function() {
	
	// order hover state
	$('#order .go').hover(function() {
		$(this).css('background-position', 'top center');
	}, function() {
		$(this).css('background-position', 'bottom center');
	});
	
	// opacity rollovers
	$('#work img').css({'opacity' : '0.7'});
	$('#work img').hover(function() {
		$(this).css({'opacity' : '1'});
	}, function() {
		$(this).css({'opacity' : '0.7'});
	});
	
	// file input styling
	$("input[type=file]").filestyle({ 
		image: "images/browse.gif",
		imageheight : 71,
		imagewidth : 80,
		width : 200
	});
	
});